{% extends "base.html" %} {% block title %}Productos — MarineInvoice Pro{% endblock %} {% block content %}

Productos & Servicios

Catálogo de servicios

{% if products %} {% set type_labels = {'service':'Servicio', 'product':'Producto', 'labor':'Mano de Obra', 'material':'Material'} %} {% for p in products %}

{{ p.name }} {{ type_labels.get(p.item_type, p.item_type) }} {% if p.item_type in ['product','material'] %} 📦 Taxable {% else %} Tax-exempt {% endif %}

${{ "%.2f"|format(p.price) }} / {{ p.unit }}{% if p.company %} · {{ p.company.name }}{% endif %}

{% if p.description %}

{{ p.description }}

{% endif %}
{% endfor %} {% else %}
🔧

No hay productos/servicios

Agrega tu catálogo

{% endif %} {% endblock %} {% block scripts %} {% endblock %}